home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 August / Software of the Month Club 1996 August.iso / mac / Desktop Publishing / HTML Voc 1.3 / HTML Vocabulary 1.3 / HTML Vocabulary 1.3.rsrc / TEXT_2100_Text styles.txt < prev    next >
Encoding:
Text File  |  1996-05-29  |  4.4 KB  |  211 lines

  1.  
  2.  Physical Styles    
  3.  
  4.  
  5.  
  6. <B>   Bold
  7.  
  8.  
  9.  
  10. <I>   Italic
  11.  
  12.  <U>   Underlined
  13.  
  14.  
  15.  
  16. <TT>  Monotype font, usually Courier
  17.  
  18.  <S>   Strike through style. HTML 3.0 tag.
  19.  
  20.  <SUP> Stands for 'superscript'. HTML 3.0 tag.
  21.  
  22.  <SUB> Stands for 'subscript'. HTML 3.0 tag.
  23.  
  24.  All physical styles must end with </...>, for example </B>
  25.  
  26.  
  27.  Change textsize    
  28.  
  29.  
  30.  
  31. <FONT [SIZE=n|+n|-n] [COLOR=color] [FACE=font1,font2...]>
  32.  
  33. n is a number between 1 (smallest text) and 7 (largest).
  34.  You can also increase reduce the size, for example +3.
  35.  COLOR is an RGB color value (rrggbb, please read Body and
  36.  head tags for more information) or the name of an usual
  37.  color such like "red" or "black". Read beneath for more
  38.  info about supported colornames. FACE is a comma-separated
  39.  list of fontnames. If the first font isn't installed on the
  40.  computer, the second font will be used, and so on. FONT
  41.  must end with </FONT>, and is a Netscape tag.
  42.  The FACE variable is an Internet Explorer extension.
  43.  
  44.  
  45.  
  46. <BASEFONT [SIZE=n]>
  47.  
  48. Sets the standard size of the text.
  49.  
  50.  
  51.  
  52. <Hn [...]>
  53.  Change the size of a header. n is a number between
  54.  1 (largest) and 6 (smallest). When starting a new header,
  55.  it will always begin in a new line. The text will
  56.  normalize after the headers end. Must end with </Hn>
  57.  Some HTML 3.0 parameters are available, such like ALIGN,
  58.  DINGBAT, NOWR and CLEAR. More information about these
  59.  parameters can be founded in the Links and Paragraphs
  60.  chapters.
  61.  
  62.  <BIG>
  63.  Makes the text big. HTML 3.0 tag. Must end with </BIG>.
  64.  
  65.  <SMALL>
  66.  Makes the text small. HTML 3.0 tag. Must end with </SMALL>.
  67.  
  68.  Logical Styles    
  69.  
  70.  
  71.  
  72. <EM>
  73.  
  74. Emphasized text text. Shows up in italic.
  75.  
  76.  
  77.  
  78. <CITE>
  79.  Titles.Shows up in italic.
  80.  
  81.  
  82.  
  83. <CODE>
  84.  
  85. Machinecode. Shows up in a typewriter font e.g. courier.
  86.  
  87.  
  88.  
  89. <KBD>
  90.  
  91. Stands for 'user keyboard entry', when you want the user
  92.  to type in a text. Shows up in a typewriter font, e.g.
  93.  courier. Sometimes bold.
  94.  
  95.  <COMMENT>
  96.  Text within this tag won't show up in the browser.
  97.  
  98.  <!-->
  99.  Comments between <! and > are ignored by the browser.
  100.  
  101.  
  102.  
  103. <SAMP>
  104.  
  105. Stands for 'computer status message'. Shows up in a
  106.  typewriter font, e.g. Courier.
  107.  
  108.  
  109.  
  110. <STRONG>
  111.  
  112. Strongly emphasized text. Shows up in bold.
  113.  
  114.  
  115.  
  116. <VAR>
  117.  
  118. Stands for 'variable'. Shows up in italic.
  119.  
  120.  <XMP>
  121.  Stands for example, shows up in a typewrier font.
  122.  
  123.  <ADDRESS>
  124.  Shows u in italic. Use it in the end of the document to
  125.  display the authors email address, for example.
  126.  
  127.  <BLOCKQUOTE>
  128.  
  129. Use it to separate a text from the rest of the page.
  130.  
  131.  
  132.  
  133. <PRE [WIDTH=n]>
  134.  
  135. Make the browser to use the same textstyles as in the HTML
  136.  code, including wordwraps. WIDTH=n sets the maximum length
  137.  of a line in characters. Link tags (<A HREF>) works within
  138.  a <PRE> text. Must end with </PRE>
  139.  
  140.  
  141.  
  142. <BLINK>
  143.  
  144. Use it to make the text blink. Must end with </BLINK>.
  145.  Netscape tag.
  146.  
  147.  <DFN>
  148.  Defines a text. Shows up in italic. HTML 3.0 tag.
  149.  
  150.  <Q>
  151.  Stands for "Short quotation". HTML 3.0 tag.
  152.  
  153.  <PERSON>
  154.  HTML 3.0 tag. Shows up the same as normal text in most
  155.  browsers.
  156.  
  157.  <AU>
  158.  Stands for "Author name". HTML 3.0 tag.
  159.  
  160.  All logical styles must end with </...>, for example </EM>
  161.  
  162.  Marquee    
  163.  
  164.  <MARQUEE...>
  165.  An auto-scrolling text. This is an Internet Explorer tag.
  166.  The following parameters can be used:
  167.  
  168.  WIDTH=n|n% HEIGHT=n|n%
  169.  Sets the width and height of the marquee.
  170.  
  171.  VSPACE=n HSPACE=n
  172.  Defines the space between the vertical and horizontal ends of
  173.  the marquee.
  174.  
  175.  ALIGN=TOP|MIDDLE|BOTTOM
  176.  Sets the align of the marquee.
  177.  
  178.  BEHAVIOR=SCROLL|SLIDE|ALTERNATE
  179.  Defines the method for the marquee to be used. SCROLL scrolls
  180.  the text from one side to the other and is the default value.
  181.  SLIDE does the same, but stops when the text has reached the
  182.  other side, and is still displayed. ALTERNATE bounces the text
  183.  bteween the sides.
  184.  
  185.  DIRECTION=LEFT|RIGHT
  186.  Defines the side to start from.
  187.  
  188.  BGCOLOR=rrggbb|color
  189.  Defines the background color for the marquee.
  190.  Read the 'Text styles' chapter for more.
  191.  
  192.  LOOP=n|INFINITE
  193.  Defines the number of loops for the text. INFINITE lopps until
  194.  the page is closed.
  195.  
  196.  SCROLLAMOUNT=n
  197.  Sets the number of pixels between succeeded drawn text scrolls.
  198.  
  199.  SCROLLDELAY=n
  200.  Sets the number of miliseconds between succeeded drawn scrolls.
  201.  
  202.  Color names    
  203.  
  204.  
  205.  
  206. Colors can be specified either by its RGB (red-green-blue)
  207.  value or by a name. There is sixteen supported colornames:
  208.  aqua, black, blue, fuchsia, gray, green, lime, maroon,
  209.  navy, olive, purple, red, silver, teal, white and yellow.
  210.  You may change the color with the <BASE> and <FONT> tags.
  211.